home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 39
/
Aminet 39 (2000)(Schatztruhe)[!][Oct 2000].iso
/
Aminet
/
mus
/
misc
/
spcli.lha
/
SongPlayerCLI
/
Rexx
/
SpCLI
/
Info.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2000-08-23
|
627b
|
27 lines
/*
SongPlayerCLI v1.52 (by Gareth Griffiths)
E-Mail: gazchap@btinternet.com
Info.rexx - Outputs some information on the current file.
*/
IF ~SHOW('P','SONGPLAYER.1') THEN DO
ADDRESS COMMAND
SAY "Can't find ARexx port 'SONGPLAYER.1'"
EXIT
END
ADDRESS 'SONGPLAYER.1'
OPTIONS RESULTS
TIME_TYPE 1
'GET_SELECTED';index=result
'GET_TITLE';title=result
'GET_ARTIST';artist=result
'GET_DURATION';duration=result
'GET_FILEPATH';filepath=result
ADDRESS COMMAND
SAY 'Information for file number 'index':'
SAY ' · Title: 'title
SAY ' · Artist: 'artist
SAY ' · Duration: 'duration
SAY ' · Path To File: 'filepath
EXIT